home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 September / Australian PC User - September 2003 (CD1).iso / magstuff / web / files / psp801ev.exe / Data1.cab / Preset_MagnifyingLens_Black_ < prev    next >
Encoding:
Text File  |  2003-06-06  |  2.1 KB  |  64 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'Kris Zaklika',
  6.         'Copyright': 'Copyright (C) 2002-2003, Jasc Software Inc., All Rights Reserved.',
  7.         'Description': 'A thin black wire frame',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_MagnifyingLens():
  13.     return {
  14.         'Bound': (0.17125,0.07,0.82375,0.94), 
  15.         'Darkness': 0, 
  16.         'Defocus': -1, 
  17.         'Frame': {
  18.             'FrameColor': (48,48,48), 
  19.             'Material': App.Constants.LensFrameMaterial.Chrome, 
  20.             'Style': App.Constants.LensFrameShape.Circular, 
  21.             'Thickness': 1
  22.             }, 
  23.         'Illumination': {
  24.             'LightList': [{
  25.                 'LightColor': (128,128,128), 
  26.                 'LightDirection': (-0.408977,-0.55636,-0.723327), 
  27.                 'HighlightSize': 52
  28.                 },{
  29.                 'LightColor': (88,90,168), 
  30.                 'LightDirection': (0.0418869,-0.0159264,0.998995), 
  31.                 'HighlightSize': 20
  32.                 },{
  33.                 'LightColor': (255,255,255), 
  34.                 'LightDirection': (1,1,1), 
  35.                 'HighlightSize': 20
  36.                 }], 
  37.             'MaxAmbience': 100, 
  38.             'MinAmbience': 0
  39.             }, 
  40.         'LensSurface': {
  41.             'EnvironmentMap': {
  42.                 'Active': App.Constants.Boolean.true, 
  43.                 'MapType': App.Constants.LensMapType.CurrentImage, 
  44.                 'PatternOpacity': 94
  45.                 }, 
  46.             'Gloss': 14, 
  47.             'Magnification': 7, 
  48.             'LensMaterial': {
  49.                 'Color': (255,255,255), 
  50.                 'Pattern': None, 
  51.                 'Gradient': None, 
  52.                 'Texture': None
  53.                 }, 
  54.             'LensOpacity': 11, 
  55.             'Refraction': 14, 
  56.             'ShapeType': App.Constants.LensShape.Spherical, 
  57.             'Shininess': 46
  58.             }
  59.         }
  60.  
  61. def Do(Environment):
  62.     App.Do( Environment, 'MagnifyingLens',         Preset_MagnifyingLens())
  63.  
  64.